home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Games / GameTracker / MasterCache < prev    next >
Encoding:
Text File  |  2001-04-18  |  3.3 KB  |  104 lines

  1. stack 200000
  2. assign GameTracker: ""
  3. cd GameTracker:
  4.  
  5. echo "*N"
  6. echo " Select master-server cache to update (1-15)"
  7. echo ""
  8. echo "   1:Barrysworld UK"
  9. echo "   2:NetGamers Italy"
  10. echo "   3:The GIB Italy"  
  11. echo "   4:Ocrana Germany"
  12. echo "   5:Planetquake"
  13. echo "   6:ID LIMBO"
  14. echo "   7:ID CTF"
  15. echo "   8:ID TF"
  16. echo "   9:ID MISC"
  17. echo "   10:ID DM"
  18. echo "   11:Fortressfest TF"
  19. echo "   12:Australia"
  20. echo "   13:Qizmo (public proxies)"  
  21. echo "   14:eDome Finland"  
  22. echo "   15:SciFi Finland"  
  23. echo ""
  24. echo "   New file will be stored in cache/quakeworld/masters_static/"
  25.  
  26. REQUESTSTRING >env:Input TITLE "select masterserver (1-15)" NOGADS
  27.  
  28. if $Input eq 1
  29.    echo "retrieving servers ...."
  30.    qstat -qwm,outfile qwmaster.barrysworld.com,GameTracker:cache/quakeworld/masters_static/01.barrysworld
  31.    echo "updating barrysworld.."
  32. endif
  33. if $Input eq 2
  34.    echo "retrieving servers ...."
  35.    qstat -qwm,outfile qwmaster.ngi.it,GameTracker:cache/quakeworld/masters_static/02.ngi
  36.    echo "updating ngi.."
  37. endif
  38. if $Input eq 3
  39.    echo "retrieving servers ...."
  40.    qstat -qwm,outfile satan.gib.it,GameTracker:cache/quakeworld/masters_static/03.gib
  41.    echo "updating gib.."
  42. endif
  43. if $Input eq 4
  44.    echo "retrieving servers ...."
  45.    qstat -qwm,outfile qwmaster.ocrana.de,GameTracker:cache/quakeworld/masters_static/04.ocrana
  46.    echo "updating ocrana.."
  47. endif
  48. if $Input eq 5
  49.    echo "retrieving servers ...."
  50.    qstat -qwm,outfile qwmaster.planetquake.com,GameTracker:cache/quakeworld/masters_static/05.planetquake
  51.    echo "updating planetquake.."
  52. endif
  53. if $Input eq 6
  54.    echo "retrieving servers ...."
  55.    qstat -qwm,outfile satan.idsoftware.com:27000,GameTracker:cache/quakeworld/masters_static/06.id_limbo
  56.    echo "updating id-limbo.."
  57. endif
  58. if $Input eq 7
  59.    echo "retrieving servers ...."
  60.    qstat -qwm,outfile satan.idsoftware.com:27002,GameTracker:cache/quakeworld/masters_static/07.id_ctf
  61.    echo "updating id-ctf.."
  62. endif
  63. if $Input eq 8
  64.    echo "retrieving servers ...."
  65.    qstat -qwm,outfile satan.idsoftware.com:27003,GameTracker:cache/quakeworld/masters_static/08.id_tf
  66.    echo "updating id-tf.."
  67. endif
  68. if $Input eq 9
  69.    echo "retrieving servers ...."
  70.    qstat -qwm,outfile satan.idsoftware.com:27004,GameTracker:cache/quakeworld/masters_static/09.id_misc
  71.    echo "updating id-misc.."
  72. endif
  73. if $Input eq 10
  74.    echo "retrieving servers ...."
  75.    qstat -qwm,outfile satan.idsoftware.com:27006,GameTracker:cache/quakeworld/masters_static/10.id_dm
  76.    echo "updating id-dm.."
  77. endif
  78. if $Input eq 11
  79.    echo "retrieving servers ...."
  80.    qstat -qwm,outfile 207.88.6.18,GameTracker:cache/quakeworld/masters_static/11.fortressfest
  81.    echo "updating fortressfest.."
  82. endif
  83. if $Input eq 12
  84.    echo "retrieving servers ...."
  85.    qstat -qwm,outfile quakex.camtech.net.au,GameTracker:cache/quakeworld/masters_static/12.australia
  86.    echo "updating australia.."
  87. endif
  88. if $Input eq 13
  89.    echo "retrieving servers ...."
  90.    qstat -qwm,outfile qizmo.sci.fi,GameTracker:cache/quakeworld/masters_static/13.qizmo
  91.    echo "updating qizmo.."
  92. endif
  93. if $Input eq 14
  94.    echo "retrieving servers ...."
  95.    qstat -qwm,outfile master.edome.net,GameTracker:cache/quakeworld/masters_static/14.edome
  96.    echo "updating edome.."
  97. endif
  98. if $Input eq 15
  99.    echo "retrieving servers ...."
  100.    qstat -qwm,outfile karr.sci.fi,GameTracker:cache/quakeworld/masters_static/15.scifi
  101.    echo "updating scifi.."
  102. endif
  103. echo ".. FINISHED - exiting..."
  104.